home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************/
- /* GetModel.ucwx */
- /* */
- /* Copyright ©1998 by Dick Whiting */
- /* */
- /*------------------------------------------------------------------------*/
- /* Used with UrbCedWWW inserting a model */
- /* See the UrbCedWWW Readme for a more complete description. */
- /**************************************************************************/
- /*
- $VER: 1.0 Copyright ©1998 by Dick Whiting
- */
-
- parse arg type
-
- options results
- Address CYGNUSED
-
- type=strip(type)
- dir=pragma('D')
- fn=dir||'/Models/'||type||'.model'
-
- 'STATUS INSERTMODE'
- ison=result
-
- if ~ison then 'INSERT MODE'
-
- 'INCLUDE FILE' fn
- included=result
-
- 'CEDTOFRONT'
-
- if ~included then do
- 'OKAY1' fn||' not found'
- end
-
- exit
-